home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Users Group Library 1996 July
/
C-C++ Users Group Library July 1996.iso
/
vol_300
/
353_02
/
newdate.h
< prev
next >
Wrap
C/C++ Source or Header
|
1992-01-18
|
392b
|
22 lines
// Chapter 7 - Program 9
// This class inherits the date class and adds one variable and one
// method to it.
#ifndef NEWDATE_H
#define NEWDATE_H
#include "date.h"
class new_date : public date {
protected:
int day_of_year; // New member variable
public:
int get_day_of_year(void); // New method
};
#endif